projects
/
gpsbabel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba40337
)
Tweak panel reader to look at only the frame containing the turn-by-turns to
author
robertl
<robertl>
Fri, 7 Jul 2006 18:15:31 +0000
(18:15 +0000)
committer
robertl
<robertl>
Fri, 7 Jul 2006 18:15:31 +0000
(18:15 +0000)
avoid entity encoding problem of ™ symbol that was recently introduced.
google.c
patch
|
blob
|
history
diff --git
a/google.c
b/google.c
index ff883dcc76a4ffdd7d3e7b0f7d324bf63d853b7e..a3e8a108fefccf757877bf4d41a4adb765ccc413 100644
(file)
--- a/
google.c
+++ b/
google.c
@@
-329,9
+329,9
@@
google_read(void)
}
if ( panel ) {
panel += 8;
- end = strstr( panel, "
>
'," );
+ end = strstr( panel, "
/div><
'," );
if ( end ) {
-
*(end+1) = '\0'
;
+
strcpy(end,"</div>")
;
end = panel;
while ( (end = strstr( end, "\\\"" ))) {
memmove( end, end+1, strlen(end)+1 );